home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000038_news@watsun.cc.columbia.edu _Fri May 7 01:17:01 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id BAA19407
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 7 May 1999 01:17:00 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id BAA07434
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 7 May 1999 01:05:08 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Subject: Re: Tek emulation resizes dos-box in kermit 3.14
  11. Message-ID: <5tLBqiOB8wuI@cc.usu.edu>
  12. Date: 6 May 99 22:24:26 MDT
  13. Organization: Utah State University
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <Pine.LNX.4.05.9905061042160.10718-100000@dd.tc.fluke.com>, David Dyck <dcd@tc.fluke.com> writes:
  17. > I use msdos kermit 3.14 and run it from the windows 95 
  18. > command line
  19. >   kermit -f myscript
  20. > I have updated the properties to set the window to about 42 lines.
  21. >  (I'm not near that computer now).
  22. > This has worded fine for years, thanks
  23. >
  24.     42 text lines is a kludge in the system. It is a normal 80x24 sized
  25. screen (scan properties) and an 8x8 dot font extracted from the display
  26. adapter's ROM. Kermit does not try to deal with that and passes the affair
  27. to DOS and the Video Bios to cope with. Some adapters might have a special
  28. video mode for it and if so Kermit uses it to restore the video without
  29. knowning what it means.
  30.     Win95 fakes everything (as we know, sigh) and takes over video
  31. work. Thus you are lucky to return from graphics mode back to text mode
  32. while running in a DOS box. That usually works from a full screen DOS box
  33. but not a window, and the reasons are best known to MS.
  34.      
  35. > Today, when I tried to use gnuplot to display a plot in 
  36. > the kc_tek40xx terminal type it was nice to see the graph,  thanks again.
  37. > When I exited gnuplot (or typed control-c) the screen exits the
  38. > graphics mode, and gets reset to text mode, but now the screen
  39. > is only displaying 25 line, and kermit seems to be confused.
  40. >   (the command prompt line is off the screen, perhaps as if
  41. >    kermit thinks there are still 42 lines to display in...)
  42.  
  43.     That's Windows not doing what DOS would have done.
  44.  
  45. > Repeat easier by using kermit 3.14 and set display properties to
  46. > 42 lines, and connect to a host that has perl installed and
  47. > execute the command
  48. > perl -e 'print "\033\014\030\n"'
  49.  
  50.     You set the display using the DOS MODE program plus ANSI.SYS, which
  51. does the font search etc business. Kermit doesn't use either and doesn't
  52. try the seach stuff. 
  53.  
  54. > Is this a known problem?
  55. > Any ideas on a fix, so that I could return to 42 line mode after
  56. > exiting tek mode.
  57. > I tried to 'push' or run the mode program to change the number
  58. > of lines, but kermit couldn't execute c:\command.com
  59.  
  60.     Then your DOS environment needs spiffing up to tell Kermit
  61. where to find command.com. That's the SHELL= material one sees with
  62. the SET command to the DOS prompt.
  63.     Joe D.
  64.  
  65. > Thanks,
  66. >   David Dyck